377e3ef61745143d4b055ef533342b0aec1ba696,plugins/spellchecker/testSrc/com/intellij/spellchecker/inspector/SplitterTest.java,SplitterTest,testCommentWithHtmlTagsAndAtr,#,232

Before Change



  public void testCommentWithHtmlTagsAndAtr() {
    String text = "<!-- <li style='color:red;'>something go here</li> foooo <li style='color:red;'>barrrr</li> <p> text text -->";
    List<CheckArea> checkAreas = SplitterFactory.getInstance().getCommentSplitter().split(text);
    correctListToCheck(checkAreas, text, new String[]{"something", "here", "foooo", "barrrr", "text", "text"});

  }

After Change



  public void testCommentWithHtmlTagsAndAtr() {
    String text = "<!-- <li style='color:red;'>something go here</li> foooo <li style='color:red;'>barrrr</li> <p> text text -->";
    correctListToCheck(SplitterFactory.getInstance().getCommentSplitter(), text, "something", "here", "foooo", "barrrr", "text", "text");

  }